Don't grab the focus away from the file list when operating the filter
authorMatthias Clasen <mclasen@redhat.com>
Mon, 23 May 2005 16:45:57 +0000 (16:45 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 23 May 2005 16:45:57 +0000 (16:45 +0000)
2005-05-23  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkfilechooserdefault.c (filter_create): Don't grab
the focus away from the file list when operating the filter
combo with the pointer.  (#304844, Sven Neumann)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-8
gtk/gtkfilechooserdefault.c

index 6cfd9fa0ecdaf2d8e73136b242e570abe4aeb21f..61b750b6636f2f51b6da302cdeeff7e011b85db8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-05-23  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkfilechooserdefault.c (filter_create): Don't grab
+       the focus away from the file list when operating the filter
+       combo with the pointer.  (#304844, Sven Neumann)
+
 2005-05-23  Tor Lillqvist  <tml@novell.com>
 
        * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to
index 6cfd9fa0ecdaf2d8e73136b242e570abe4aeb21f..61b750b6636f2f51b6da302cdeeff7e011b85db8 100644 (file)
@@ -1,3 +1,9 @@
+2005-05-23  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkfilechooserdefault.c (filter_create): Don't grab
+       the focus away from the file list when operating the filter
+       combo with the pointer.  (#304844, Sven Neumann)
+
 2005-05-23  Tor Lillqvist  <tml@novell.com>
 
        * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to
index 6cfd9fa0ecdaf2d8e73136b242e570abe4aeb21f..61b750b6636f2f51b6da302cdeeff7e011b85db8 100644 (file)
@@ -1,3 +1,9 @@
+2005-05-23  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkfilechooserdefault.c (filter_create): Don't grab
+       the focus away from the file list when operating the filter
+       combo with the pointer.  (#304844, Sven Neumann)
+
 2005-05-23  Tor Lillqvist  <tml@novell.com>
 
        * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to
index 41c61aa8b99e5f8652c457e4ed66670d020c1ac3..25571eec22fbb115702c8545cba072dfde066548 100644 (file)
@@ -1842,6 +1842,8 @@ static GtkWidget *
 filter_create (GtkFileChooserDefault *impl)
 {
   impl->filter_combo = gtk_combo_box_new_text ();
+  gtk_combo_box_set_focus_on_click (GTK_COMBO_BOX (impl->filter_combo), FALSE);
+
   g_signal_connect (impl->filter_combo, "changed",
                    G_CALLBACK (filter_combo_changed), impl);